home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / WAVEPOOL.ARJ / SQRT.WPL < prev    next >
Text File  |  1992-04-08  |  411b  |  26 lines

  1.  
  2. #
  3. #       SQRT Wavepool program
  4. #
  5. #       Copyright 1992, Data Assist, Inc.
  6. #
  7.  
  8. BEGIN {
  9.     screate("sqrt.sou")
  10.  
  11.     for (x=0; x<=1000; x=x+10) {
  12.         sinwave2(x-sqrt(x), x+sqrt(x), 50);
  13.         quiet(2);
  14.     }
  15.     for (x=1000; x>=0; x=x-10) {
  16.         sinwave2(x-sqrt(x), x+sqrt(x), 50);
  17.         quiet(2);
  18.     }
  19.  
  20.     quiet(10);
  21.     sclose(0);
  22.     sndvoc("sqrt.sou", "sqrt.voc");
  23. }
  24.  
  25.  
  26.